home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
bgscroll
/
frm.frm
(
.txt
)
< prev
next >
Wrap
Visual Basic Form
|
1999-09-22
|
5KB
|
156 lines
VERSION 5.00
Begin VB.Form frm
AutoRedraw = -1 'True
Caption = "BGScroll Examples"
ClientHeight = 1380
ClientLeft = 3495
ClientTop = 2865
ClientWidth = 7230
LinkTopic = "frm"
ScaleHeight = 92
ScaleMode = 3 'Pixel
ScaleWidth = 482
Begin VB.PictureBox pic4
Appearance = 0 'Flat
AutoRedraw = -1 'True
AutoSize = -1 'True
BackColor = &H80000005&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 240
Left = 1860
Picture = "frm.frx":0000
ScaleHeight = 16
ScaleMode = 3 'Pixel
ScaleWidth = 16
TabIndex = 3
Top = 855
Width = 240
End
Begin VB.PictureBox pic3
Appearance = 0 'Flat
AutoRedraw = -1 'True
AutoSize = -1 'True
BackColor = &H80000005&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 240
Left = 1620
Picture = "frm.frx":0342
ScaleHeight = 16
ScaleMode = 3 'Pixel
ScaleWidth = 16
TabIndex = 2
Top = 615
Width = 240
End
Begin VB.PictureBox pic2
Appearance = 0 'Flat
AutoRedraw = -1 'True
AutoSize = -1 'True
BackColor = &H80000005&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 240
Left = 1380
Picture = "frm.frx":0684
ScaleHeight = 16
ScaleMode = 3 'Pixel
ScaleWidth = 16
TabIndex = 1
Top = 375
Width = 240
End
Begin VB.Timer Timer1
Interval = 25
Left = 255
Top = 195
End
Begin VB.PictureBox pic
Appearance = 0 'Flat
AutoRedraw = -1 'True
AutoSize = -1 'True
BackColor = &H80000005&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 240
Left = 1140
Picture = "frm.frx":09C6
ScaleHeight = 16
ScaleMode = 3 'Pixel
ScaleWidth = 16
TabIndex = 0
Top = 135
Width = 240
End
Begin VB.Label lbl
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Feel Free to Modify this Code"
BeginProperty Font
Name = "MS Sans Serif"
Size = 13.5
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 360
Index = 1
Left = 2235
TabIndex = 5
Top = 150
Width = 4155
End
Begin VB.Label lbl
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Feel Free to Modify this Code"
BeginProperty Font
Name = "MS Sans Serif"
Size = 13.5
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 360
Index = 0
Left = 2265
TabIndex = 4
Top = 165
Width = 4155
End
Begin VB.Menu mnuFile
Caption = "&File"
Begin VB.Menu mnuExit
Caption = "E&xit"
End
End
Begin VB.Menu mnuHelp
Caption = "&Help"
Begin VB.Menu mnuAbout
Caption = "&About"
End
End
Attribute VB_Name = "frm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub mnuAbout_Click()
MsgBox App.EXEName & " by Todd Spangler"
End Sub
Private Sub mnuExit_Click()
End Sub
Private Sub Timer1_Timer()
BGScroll pic, downx
BGScroll pic2, upx
BGScroll pic3, rightx
BGScroll pic4, leftx
End Sub